BACK TO LIST

Syntax:

VoiceAction1.Direct_Add YESorNo , RecordNumber

Details :

This does not bring the complete editor after you speak but directly adds the produced strings to the specified RECORD number.

You can then Edit the entry off line or by giving a "YES" to  Add_to_language

Example :

If you prepare four  records ..1) Up 2) Down 3) Right 4) Left

 


Now say /Up/

Private Sub CommandButton()

VoiceAction1.Direct_Add "YES" , 1


End Sub

 


Now say /Down/

Private Sub CommandButton()

VoiceAction1.Direct_Add "YES" , 2


End Sub

 


Now say /Right/

Private Sub CommandButton()

VoiceAction1.Direct_Add "YES" , 3


End Sub

 


Now say /Left/

Private Sub CommandButton()

VoiceAction1.Direct_Add "YES" , 4


End Sub

 


BACK TO LIST